home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / theLifeArk.swf / scripts / DefineSprite_53_levelList / frame_1 / DoAction.as
Text File  |  2011-09-19  |  873b  |  35 lines

  1. _global.gameDat = SharedObject.getLocal("pirateRace","/");
  2. if(!_global.gameDat.data.levelNum)
  3. {
  4.    _global.gameDat.data.levelNum = 1;
  5.    _global.gameDat.flush();
  6. }
  7. i = 1;
  8. while(i <= 12)
  9. {
  10.    if(i <= _global.gameDat.data.levelNum)
  11.    {
  12.       this["btn" + i].gotoAndStop("ok");
  13.       this["btn" + i].onPress = function()
  14.       {
  15.          _global.ctn.game.crtLevel = Number(this._name.substr(3,2));
  16.          _global.ctn.game.loadLevel();
  17.          _global.ctn.game.levelList.removeMovieClip();
  18.       };
  19.       this["btn" + i].useHandCursor = true;
  20.    }
  21.    else
  22.    {
  23.       this["btn" + i].gotoAndStop("no");
  24.       this["btn" + i].onPress = null;
  25.       this["btn" + i].useHandCursor = false;
  26.    }
  27.    this["btn" + i].ctt.gotoAndStop(i);
  28.    this["btn" + i].num.text = "LEVEL: " + i;
  29.    i++;
  30. }
  31. bg.onPress = function()
  32. {
  33. };
  34. bg.useHandCursor = false;
  35.